var internal/strconv.powtab

5 uses

	internal/strconv (current package)
		atof.go#L309: var powtab = []int{1, 3, 6, 9, 13, 16, 19, 23, 26}
		atof.go#L339: 		if d.dp >= len(powtab) {
		atof.go#L342: 			n = powtab[d.dp]
		atof.go#L349: 		if -d.dp >= len(powtab) {
		atof.go#L352: 			n = powtab[-d.dp]